* alloc.c (Fgarbage_collect): If the minibuffer is active, don't
authorJim Blandy <jimb@redhat.com>
Mon, 21 Jun 1993 00:25:57 +0000 (00:25 +0000)
committerJim Blandy <jimb@redhat.com>
Mon, 21 Jun 1993 00:25:57 +0000 (00:25 +0000)
display the "...done" message; allow the minibuffer to show again.

src/alloc.c

index f47287d4b01f37810e520a5cf797a7b7afbc5bbb..22153110480bf6d8470fa9fdb2fe12b5351a28e0 100644 (file)
@@ -1358,7 +1358,7 @@ Garbage collection happens automatically if you cons more than\n\
   if (gc_cons_threshold < 10000)
     gc_cons_threshold = 10000;
 
-  if (omessage)
+  if (omessage || minibuf_level > 0)
     message1 (omessage);
   else if (!noninteractive)
     message1 ("Garbage collecting...done");